Grid Track
2本の
Grid Line
の間の空間のこと
雑に言えば、gridの行または列のこと
Grid Trackのサイズのことを
Grid Track Size
と呼ぶ
以下のpropertyを使って指定する
grid-template-rows
grid-template-columns
https://developer.mozilla.org/ja/docs/Glossary/Grid_Tracks
code:css
.wrapper {
display: grid;
grid-template-columns: 200px 1fr 3fr;
}
https://gyazo.com/fc5aafd2e200034033c20989df8a8541
3つの列trackがある
Grid Track Size
は、左から
200px, 1fr, 2fr
になっている
2つの行trackがある
6つの
Grid Cell
がある